home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 2: CDPD 1 / Almathera Ten on Ten - Disc 2: CDPD 1.iso / pd / 351-375 / 359 / dice / dice.lzh / lib / string / strcpy.c < prev    next >
C/C++ Source or Header  |  1990-03-27  |  276b  |  31 lines

  1.  
  2. /*
  3.  *  STRCPY.C
  4.  *
  5.  *  (c)Copyright 1990, Matthew Dillon, All Rights Reserved
  6.  *
  7.  */
  8.  
  9. #include <string.h>
  10.  
  11. char *
  12. strcpy(d, s)
  13. char *d;
  14. const char *s;
  15. {
  16.     char c;
  17.     char *base = d;
  18.  
  19.     c;
  20.  
  21.     while(c = *s) {
  22.     *d = c;
  23.     ++s;
  24.     ++d;
  25.     }
  26.     *d = 0;
  27.     return(base);
  28. }
  29.  
  30.  
  31.